home *** CD-ROM | disk | FTP | other *** search
/ Champak 52 / Volume 52 - JOGO DISK .iso / Games / decorating_phebes_room.swf / scripts / DefineButton2_242 / BUTTONCONDACTION on(release).as
Text File  |  2007-09-26  |  269b  |  14 lines

  1. on(release){
  2.    if(btn_wall._currentframe > 1)
  3.    {
  4.       btn_wall.prevFrame();
  5.       btn_floor.prevFrame();
  6.    }
  7.    else
  8.    {
  9.       btn_wall.gotoAndStop(btn_wall._totalframes);
  10.       btn_floor.gotoAndStop(btn_floor._totalframes);
  11.    }
  12.    initButtons();
  13. }
  14.